home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / SNNSV32.ZIP / SNNSv3.2 / kernel / sources / cc_rcc_topo.ph < prev    next >
Text File  |  1994-04-25  |  1KB  |  54 lines

  1. /*****************************************************************************
  2.   FILE           : cc_rcc_topo.ph
  3.   SHORTNAME      : 
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : Header file of correspondent '.c' file
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Michael Schmalzl
  10.   DATE           : 5.2.1993
  11.  
  12.   CHANGED BY     : Michael Schmalzl
  13.   IDENTIFICATION : @(#)cc_rcc_topo.ph    1.8 3/15/94
  14.   SCCS VERSION   : 1.8
  15.   LAST CHANGE    : 3/15/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.  
  19. ******************************************************************************/
  20. #ifndef _CC_RCC_TOPO_DEFINED_
  21. #define  _CC_RCC_TOPO_DEFINED_
  22.  
  23. /* begin global definition section */
  24.  
  25. krui_err cc_topoSort(int topoSortId);
  26.  
  27. /* end global definition section */
  28.  
  29. /* begin privat definition section */
  30.  
  31. #define RCC_FLAG 0x0800
  32. #define LINKS_LEAVING(unitPtr)   unitPtr->value_a
  33. #define LINKS_ARRIVEING(unitPtr) unitPtr->value_b
  34. #define INPUT_LINKS(unitPtr)     unitPtr->value_c
  35.  
  36. static void cc_clearFlags(void);
  37. static void rcc_clearFlags(void);
  38. static void  DepthFirst4(struct Unit *unitPtr, int depth);
  39. static void  DepthFirst5(struct Unit *unitPtr, int depth);
  40. static void cc_quicksort(int left, int right );
  41.  
  42. static TopoPtrArray    global_topo_ptr;
  43.  
  44. /* end  privat definition section */
  45.  
  46. #endif /* _CC_RCC_TOPO_DEFINED_ */
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.